home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-116.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  113 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:116
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(15551);
  12.  script_version ("$Revision: 1.1 $");
  13.  script_cve_id("CAN-2004-0888", "CAN-2004-0923");
  14.  
  15.  name["english"] = "MDKSA-2004:116: cups";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing the patch for the advisory MDKSA-2004:116 (cups).
  21.  
  22.  
  23. Chris Evans discovered numerous vulnerabilities in the xpdf package, which also
  24. effect software using embedded xpdf code:
  25. Multiple integer overflow issues affecting xpdf-2.0 and xpdf-3.0. Also programs
  26. like cups which have embedded versions of xpdf. These can result in writing an
  27. arbitrary byte to an attacker controlled location which probably could lead to
  28. arbitrary code execution. (CAN-2004-0888)
  29. Also, when CUPS debugging is enabled, device URIs containing username and
  30. password end up in error_log. This information is also visible via 'ps'.
  31. (CAN-2004-0923)
  32. The updated packages are patched to protect against these vulnerabilities.
  33.  
  34.  
  35. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:116
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the cups package";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Mandrake Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/Mandrake/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"cups-1.1.20-5.3.100mdk", release:"MDK10.0", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if ( rpm_check( reference:"cups-common-1.1.20-5.3.100mdk", release:"MDK10.0", yank:"mdk") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67. if ( rpm_check( reference:"cups-serial-1.1.20-5.3.100mdk", release:"MDK10.0", yank:"mdk") )
  68. {
  69.  security_hole(0);
  70.  exit(0);
  71. }
  72. if ( rpm_check( reference:"libcups2-1.1.20-5.3.100mdk", release:"MDK10.0", yank:"mdk") )
  73. {
  74.  security_hole(0);
  75.  exit(0);
  76. }
  77. if ( rpm_check( reference:"libcups2-devel-1.1.20-5.3.100mdk", release:"MDK10.0", yank:"mdk") )
  78. {
  79.  security_hole(0);
  80.  exit(0);
  81. }
  82. if ( rpm_check( reference:"cups-1.1.19-10.3.92mdk", release:"MDK9.2", yank:"mdk") )
  83. {
  84.  security_hole(0);
  85.  exit(0);
  86. }
  87. if ( rpm_check( reference:"cups-common-1.1.19-10.3.92mdk", release:"MDK9.2", yank:"mdk") )
  88. {
  89.  security_hole(0);
  90.  exit(0);
  91. }
  92. if ( rpm_check( reference:"cups-serial-1.1.19-10.3.92mdk", release:"MDK9.2", yank:"mdk") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97. if ( rpm_check( reference:"libcups2-1.1.19-10.3.92mdk", release:"MDK9.2", yank:"mdk") )
  98. {
  99.  security_hole(0);
  100.  exit(0);
  101. }
  102. if ( rpm_check( reference:"libcups2-devel-1.1.19-10.3.92mdk", release:"MDK9.2", yank:"mdk") )
  103. {
  104.  security_hole(0);
  105.  exit(0);
  106. }
  107. if (rpm_exists(rpm:"cups-", release:"MDK10.0")
  108.  || rpm_exists(rpm:"cups-", release:"MDK9.2") )
  109. {
  110.  set_kb_item(name:"CAN-2004-0888", value:TRUE);
  111.  set_kb_item(name:"CAN-2004-0923", value:TRUE);
  112. }
  113.